home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 015a / keychk12.zip / KEYCHECK.DOC next >
Text File  |  1992-01-12  |  3KB  |  72 lines

  1. KEYCHECK DOCUMENTATION
  2. CHARLES BRANNON
  3. C/O CCS INC.
  4. 7-C TERRACE WAY
  5. GREENSBORO, NC 27403-3659
  6.  
  7. KEYCHECK IS DISTRIBUTED AS SHAREWARE. AFTER A TRIAL PERIOD OF 30 DAYS,
  8. YOU MUST SEND A CHECK OR MONEY ORDER FOR $5.00 TO ME AT THE ADDRESS ABOVE
  9. IF YOU FIND IT USEFUL AND WISH TO CONTINUE USING IT.
  10. KEYCHECK IS COPYRIGHTED (C) 1992 AND ALL RIGHTS ARE RESERVED BY CHARLES BRANNON
  11. NO FEE OTHER THAN A SMALL COPYING FEE MAY BE CHARGED FOR ITS DISTRIBUTION.
  12. KEYCHECK MUST BE DISTRIBUTED WITH THIS DOCUMENTATION AND MAY NOT BE MODIFIED
  13. WITHOUT MY EXPRESS WRITTEN PERMISSION.
  14. KEYCHECK IS COMPILED WITH THE MICROSOFT QUICK BASIC COMPILER V 4.0 WHOSE
  15. COPYRIGHT AND TRADEMARKS ARE PROPERTY OF MICROSOFT CORPORATION.
  16.  
  17. KEYCHECK 1.2 (C) 1992 Charles Brannon
  18. Format:
  19. KEYCHECK seconds
  20. where seconds = #seconds to wait for a key before running default batch file
  21.  
  22. KEYCHECK lets you choose an alternate AUTOEXEC.BAT file on powerup.
  23. If you do nothing, your computer boots up as normal after a short delay.
  24. If you press a key before the delay expires, you can abort the normal
  25. batch process and execute an alternate batch process.
  26. You will usually have some lines that are common to both situations.
  27. Put these lines in AUTOEXEC.BAT.  Now create a separate batch file called
  28. AUTOEXEC.DEF that will continue where AUTOEXEC.BAT left off.
  29. The alternate batch file, AUTOEXEC.ALT, should also continue, but can contain
  30. different lines to suit your purposes. I use this program to automatically
  31. load my remote access software by default, but if I press any key during
  32. bootup, the remote software is not loaded, saving me time and memory.
  33. Put KEYCHECK as the second-to-last line of AUTOEXEC.BAT
  34. If it times out before a key is pressed, the default continuation
  35. batch file AUTOEXEC.DEF is copied to AUTOX2.BAT.  Otherwise, the
  36. alternate continuation batch file AUTOEXEC.ALT is copied to AUTOX2.BAT.
  37. The last line of AUTOEXEC.BAT should be AUTOX2 to continue to this file.
  38. Note: AUTOEXEC.DEF and AUTOEXEC.ALT should be in root directory.
  39. If you find KEYCHECK to be useful, please send $5.00 to
  40. Charles Brannon c/o CCS, 7C Terrace Way, Greensboro NC 27403
  41.  
  42. EXAMPLE BATCH FILES:
  43.  
  44. Contents of AUTOEXEC.BAT:
  45. -------------------------
  46. ECHO OFF
  47. CLS
  48. PROMPT $P$G
  49. PATH C:\;C:\DOS;C:\WINDOWS
  50. ECHO BY DEFAULT, WINDOWS WILL RUN
  51. KEYCHECK 10
  52. AUTOX2
  53.  
  54. Contents of AUTOEXEC.DEF:
  55. -------------------------
  56. WIN
  57. MENU MENU.TXT
  58.  
  59. Contents of AUTOEXEC.ALT:
  60. -------------------------
  61. ECHO WINDOWS DID NOT RUN
  62. MENU MENU.TXT
  63.  
  64. Revision History
  65. ================
  66. Rev 1.1 Released to Compuserve Jan. 3, 1992
  67. Rev 1.2 Released Jan. 12, 1992
  68.  Fixed beep that caused "files copied" to be displayed too long.
  69.  Removed copy command's feedback
  70.  Put in a "window," centered output, added a sound effect
  71.  
  72.